home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / include / tccompat.zoo / aes.h next >
C/C++ Source or Header  |  1992-03-24  |  1KB  |  49 lines

  1. /*
  2.     <aes.h>
  3.     This header is "Public Domain".
  4.     (P) 1992 by Markus M. Nick
  5.     
  6.     This header makes it easier to compile sources with both PureC/TurboC 
  7.     and GNU-CC.  Now you needn't include different header files any more.
  8.     
  9.     Please send your comments and suggestions to:
  10.         Markus_Nick@mz.maus.de
  11. */
  12.  
  13. #ifndef __AES__
  14.  
  15. #define    __TCC_COMPAT__ 1
  16. #define    OBSPEC    U_OB_SPEC
  17.  
  18. extern short _global[];
  19. #define    global    _global
  20.  
  21. #ifndef cdecl
  22. #define cdecl /**/
  23. #endif
  24.  
  25. /* this is the sort of MFDB PureC/TurboC supports */
  26.  
  27. #define    __MFDB__    1
  28.  
  29. typedef struct
  30. {
  31.     char        *fd_addr;    /* Addrerss of upper left corner of first*/
  32.                                     /* plane of raster area. If NULL then   */
  33.                                     /* MFDB is for a physical device        */
  34.     short        fd_w;        /* Form Width in Pixels                 */
  35.     short        fd_h;       /* Form Height in Pixels                */
  36.     short        fd_wdwidth; /* Form Width in shorts(fd_w/sizeof(int)*/
  37.     short        fd_stand;   /* Form format 0= device spec 1=standard*/
  38.     short        fd_nplanes; /* Number of memory planes              */
  39.     short        fd_r1;      /* Reserved                             */
  40.     short        fd_r2;      /* Reserved                             */
  41.     short        fd_r3;      /* Reserved                             */
  42. } MFDB;
  43.  
  44.  
  45. #include <aesbind.h>
  46.  
  47. #define __AES__    1
  48. #endif
  49.